-
Notifications
You must be signed in to change notification settings - Fork 339
[lldb][CI] Disable failing tests on linux #10043
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: swift/release/6.0
Are you sure you want to change the base?
[lldb][CI] Disable failing tests on linux #10043
Conversation
@swift-ci please test |
@@ -10,7 +10,7 @@ | |||
class TestDbgInfoContentDeque(TestBase): | |||
@add_test_categories(["libc++"]) | |||
@skipIf(compiler=no_match("clang")) | |||
@skipIf(compiler="clang", compiler_version=["<", "12.0"]) | |||
@skipIf(compiler="clang", compiler_version=["<", "12.0"], oslist=["linux"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these "and" or "or"? You may need to do this instead:
@skipIf(compiler="clang", compiler_version=["<", "12.0"], oslist=["linux"]) | |
@skipIf(compiler="clang", compiler_version=["<", "12.0"]) | |
@skipIf(oslist=["linux"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was hoping for "and" but this is better solution, I'll change the other tests to match.
1840e11
to
1445eb8
Compare
I'm confused:
|
|
No, your commit is in the right place. |
@swift-ci test |
@@ -6,6 +6,7 @@ | |||
|
|||
|
|||
class TestCase(TestBase): | |||
@skipIf(oslist=["linux"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it's dangling, it should decorate the appropriate test_
method.
This commit adds skipIfs in order to disable tests that are failing on the Green Dragon CI Ubuntu bots. rdar://145000025
1445eb8
to
eb41d98
Compare
@swift-ci please test |
@@ -11,7 +11,7 @@ | |||
class TestDbgInfoContentList(TestBase): | |||
@add_test_categories(["libc++"]) | |||
@skipIf(compiler=no_match("clang")) | |||
@skipIf(compiler="clang", compiler_version=["<", "12.0"]) | |||
@skipIf(compiler="clang", compiler_version=["<", "12.0"], oslist=["linux"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is still not what you intend.
This commit adds skipIfs in order to disable tests that are failing on the Green Dragon CI Ubuntu bots.
rdar://145000025